func net/url.unescape
15 uses
net/url (current package)
url.go#L90: return unescape(s, encodeQueryComponent)
url.go#L101: return unescape(s, encodePathSegment)
url.go#L106: func unescape(s string, mode encoding) (string, error) {
url.go#L530: if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
url.go#L536: if username, err = unescape(username, encodeUserPassword); err != nil {
url.go#L539: if password, err = unescape(password, encodeUserPassword); err != nil {
url.go#L564: unescapedColonPort, err := unescape(colonPort, encodeHost)
url.go#L579: hostPart, err := unescape(hostname[:zoneIdx], encodeHost)
url.go#L583: zonePart, err := unescape(hostname[zoneIdx:], encodeZone)
url.go#L590: unescapedHostname, err = unescape(hostname, encodeHost)
url.go#L636: if host, err = unescape(host, encodeHost); err != nil {
url.go#L661: path, err := unescape(p, encodePath)
url.go#L689: p, err := unescape(u.RawPath, encodePath)
url.go#L728: frag, err := unescape(f, encodeFragment)
url.go#L752: f, err := unescape(u.RawFragment, encodeFragment)
 |
The pages are generated with Golds v0.8.5. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |